    /* 
        liefOS Design Language CSS for Applications
        Copyright (c) 2026 Liejan Lawrsel Luengo
    */

    /* System Font */
    @font-face {
        font-family: 'Google Sans Flex';
        src: url('https://assets-liefos.netlify.app/font/googlesansflex/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf') format('truetype');
    }

    * {
        box-sizing: border-box;
        scrollbar-width: none;
        overscroll-behavior-y: none;
        user-select: none;
        font-family: "Google Sans Flex";
    }

    body {
        background-color: white;
        color: black;
        padding: 0;
        margin: 0;
        scrollbar-width: none;
    }

    body.liefOS_UIDark {
        background-color: black;
        color: white;
    }

    .top {
        padding: 40px 40px 50px 40px;
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
        top: 0;
        background: rgba(255, 255, 255, 0.3);
        position: sticky;
        backdrop-filter: blur(15px);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        color: black;
    }

    body.liefOS_UIDark .top {
        background: rgba(0, 0, 0, 0.3);
        color: white;
    }

    .top.scroll {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .top.scroll .name {
        display: block;
        position: sticky;
        left: 0;
        width: 100%;
        margin-bottom: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .top.scroll>*:not(.name) {
        display: inline-block;
        vertical-align: middle;
    }

    .bottom {
        padding: 20px 40px;
        -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
    mask-image: linear-gradient(to top, black 70%, transparent 100%);
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.3);
        position: fixed;
        backdrop-filter: blur(15px);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        color: black;
        box-sizing: border-box;
    }

    body.liefOS_UIDark .bottom {
        background: rgba(0, 0, 0, 0.3);
        color: white;
    }

    .bottom button,
    .bottom input {
        height: 45px;
        margin: 0;
        font-family: 'Google Sans Flex';
        border-radius: 35px;
        font-size: 14px;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }

    .bottom input {
        background: rgba(0, 0, 0, 0.2);
        color: black;
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0 25px;
        outline: none;
        font-size: 14px;
        flex-grow: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .bottom input::placeholder {
        color: rgba(0, 0, 0, 0.8);
    }

    body.liefOS_UIDark .bottom input {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.liefOS_UIDark .bottom input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .bottom input:focus {
        background: rgba(0, 0, 0, 0.4);
        border-color: rgba(0, 0, 0, 0.3);
    }

    body.liefOS_UIDark .bottom input:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .name {
        font-size: 24px;
        margin: 0;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    button {
        background: rgba(155, 155, 155, 0.7);
        color: rgb(0, 0, 0);
        border: none;
        outline: none;
        padding: 10px 30px;
        border-radius: 35px;
        font-family: 'Google Sans Flex';
        cursor: pointer;
        margin-right: 10px;
        font-size: 14px;
        margin-top: 10px;
        transition: all 0.3s ease;
        max-width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    body.liefOS_UIDark button {
        background: rgb(48, 48, 48, 0.7);
        color: rgb(255, 255, 255);
    }

    button:hover {
        filter: brightness(1.5);
    }

    button:active {
        transform: scale(0.9);
    }

    .textpill {
        background: rgba(155, 155, 155, 0.7);
        color: rgb(0, 0, 0);
        padding: 10px 30px;
        border-radius: 35px;
        font-family: 'Google Sans Flex';
        display: inline-block;
        vertical-align: middle;
        line-height: 1.2;
        text-align: center;
        margin-right: 10px;
        margin-top: 10px;
        font-size: 14px;
        max-width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    body.liefOS_UIDark .textpill {
        background: rgb(48, 48, 48, 0.7);
        color: rgb(255, 255, 255);
    }

    .bottom .textpill {
        height: 45px;
        margin: 0;
        box-sizing: border-box;
        line-height: 45px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .content {
        padding: 20px 40px 100px 40px;
        max-width: 100%;
        word-wrap: break-word;
    }

    .card {
        background: rgba(155, 155, 155, 0.1);
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    body.liefOS_UIDark .card {
        background: rgba(255, 255, 255, 0.05);
    }

    .card_description {
        display: block;
        font-size: 0.8rem;
        opacity: 0.5;
        margin-top: 4px;
    }

    .code {
        font-family: 'monospace';
        background: rgba(155, 155, 155, 0.1);
        padding: 10px;
        border-radius: 18px;
        margin: 15px 0;
        white-space: pre-wrap;
        word-break: break-all;
        max-width: 100%;
        user-select: text;
        width: fit-content;
        border: 1px solid rgba(155, 155, 155, 0.1);
        font-size: 13px;
        line-height: 1.5;
    }

    body.liefOS_UIDark .code {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.05);
    }

    h2 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    h3 {
        font-size: 16px;
        opacity: 0.6;
        margin-top: 0;
        font-weight: normal;
    }

    p {
        line-height: 1.6;
        font-size: 15px;
    }

    b {
        font-weight: 600;
    }

    table {
        width: fit-content;
        margin: 20px 0;
        background: rgba(155, 155, 155, 0.05);
        border-radius: 20px;
        font-size: 14px;
        display: block;
        max-width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        border-collapse: collapse;
    }

    body.liefOS_UIDark table {
        background: rgba(255, 255, 255, 0.03);
    }

    th {
        background: rgba(155, 155, 155, 0.1);
        padding: 15px 20px;
        text-align: left;
        font-weight: 600;
    }

    body.liefOS_UIDark th {
        background: rgba(255, 255, 255, 0.08);
    }

    td {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(155, 155, 155, 0.1);
    }

    body.liefOS_UIDark td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    tr:last-child td {
        border-bottom: none;
    }

    .fullscreen-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 20;
        overflow-y: auto;
        transition: top 0.5s ease;
        padding: 40px;
        box-sizing: border-box;
    }

    body.liefOS_UIDark .fullscreen-menu {
        background: rgba(0, 0, 0, 0.8);
    }

    .fullscreen-menu.active {
        top: 0;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .grid-category {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .grid-category h3 {
        grid-column: 1 / -1;
        margin: 0 0 10px 0;
        font-size: 18px;
    }

    .grid-item {
        background: rgba(155, 155, 155, 0.1);
        padding: 25px;
        border-radius: 20px;
        cursor: pointer;
        transition: transform 0.3s ease, background 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    body.liefOS_UIDark .grid-item {
        background: rgba(255, 255, 255, 0.05);
    }

    .grid-item:hover {
        transform: translateY(-5px);
        background: rgba(155, 155, 155, 0.2);
    }

    .card_description {
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .close-menu {
        position: sticky;
        top: 0;
        margin-left: auto;
        display: block;
        z-index: 100;
        cursor: pointer;
    }

    .image-preview {
        background: rgba(155, 155, 155, 0.1);
        border-radius: 20px;
        margin-bottom: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: fit-content;
        max-width: 100%;
        pointer-events: none;
    }

    body.liefOS_UIDark .image-preview {
        background: rgba(255, 255, 255, 0.05);
    }

    .image-preview .img-container {
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.05);
    }

    .image-preview img {
        display: block;
        max-width: 100%;
        max-height: 280px;
        width: auto;
        border-radius: 12px;
        height: auto;
        object-fit: contain;
    }

    .image-preview .img-path {
        padding: 8px 15px;
        font-size: 11px;
        opacity: 0.5;
        border-top: 1px solid rgba(155, 155, 155, 0.1);
    }